home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / editor / afrikans.lha / Install < prev    next >
Text File  |  1996-05-01  |  852b  |  37 lines

  1. ; Installation script for an AlphaSpell dictionary
  2.  
  3. (transcript "Installing " @app-name " ...")
  4.  
  5. (if (exists "AlphaSpell:")
  6.     (
  7.         (set @default-dest
  8.             (askdir
  9.                 (prompt "Install the Dictionary where?")
  10.                 (help @askdir-help)
  11.                 (default (tackon "AlphaSpell:Dict" @app-name))
  12.                 (newpath)
  13.             )
  14.         )
  15.  
  16.         (if (not (exists @default-dest (noreq)))
  17.             (makedir @default-dest)
  18.         )
  19.  
  20.         (copyfiles
  21.             (prompt "Copying AlphaSpell Dictionary")
  22.             (help @copyfiles-help)
  23.             (source "Dictionary/")
  24.             (dest @default-dest)
  25.             (confirm)
  26.             (all)
  27.         )
  28.     )
  29.     (message
  30.         "The script will not install the " @app-name " dictionary until "
  31.         "AlphaSpell 6 is installed."
  32.     )
  33.  
  34. )
  35.  
  36. (exit)
  37.